KPI Composite Control Properties Interface |
|
The KPI Composite Control Properties Interface helps in configuring properties of composite control.
Table 1. Fields on the Properties Interface of Manual KPI definition Composite Control
Field Name |
Description |
---|---|
Title |
Specify chart title. Title property is not applicable for Angular Gauge and Linear Gauge. You may use XForms label for the same. |
View |
Specify one of the following chart type: Angular Gauge, Linear Gauge, Vertical Bullet, Horizontal Bullet. |
Label |
Label denotes the description of the value. For example: Total_OrderAmount. |
Target Value |
The target value that you specify for the KPI appears in this field by default. You can change the value, if required. |
Unit of Measure |
The unit of measure that you select while defining the KPI appears, by default. You can change the value, if required. |
Range |
The ranges defined in the KPI appear by default. You cannot edit the ranges but can provide colors to the ranges from the color picker. |
Show Legend |
Select this option to view the legend information of the ranges and unit of measure. If you want to view only the gauge, you must clear this option. This option is selected by default. |
Render View on load |
Select this option if you want to render the view while the page loads. |
Table 2. Fields on the Properties Interface of KPI Composite Control with attached Business Measure
Field Name |
Description |
---|---|
Title |
Specify chart title. Title property is not applicable for Angular Gauge and Linear Gauge. You may use XForms label for the same. |
View |
Specify one of the following chart type: Angular Gauge, Linear Gauge, Vertical Bullet, Horizontal Bullet. |
Target Value |
The target value that you specify for the KPI appears in this field by default. You can change the value, if required. |
Unit of Measure |
The unit of measure that you select while defining the KPI appears, by default. You can change the value, if required. |
Range |
The ranges defined in the KPI appear by default. You cannot edit the ranges but can provide colors to the ranges from the color picker. |
Label |
Label denotes the description of the value. For example: Total_OrderAmount. |
Show Legend |
Select this check box to view the legend information regarding ranges and unit of measure. You must clear this check box to view only the gauge. Show Legend is selected by default. |
Render View on load check box |
Select if you want to render the view while the page loads. |
Time-frame |
By default, the defined time-frame appears in the Business Measure. It is an editable field. |
Input Parameter |
The value of the attribute for which you need dynamic input while designing the dashboard (as specified in Business Measure). The values defined during the KPI definition will be shown here by default. You can also edit the default values provided depending upon the parameter and its data type. Note: |
Table 3. Fields on the Properties Interface of KPI Composite Control with Schedule (KPI Trends)
Field Name |
Description |
---|---|
Title |
Specify chart title. Title property is not applicable for Angular gauge and Linear gauge. You may use XFORMS label for the same. |
View |
Line Chart appears by default and is not editable. |
Label |
Label denotes the description of the value. For example: Total_OrderAmount. |
Target Value |
The target value that you specify for the KPI appears in this field by default. This is not editable. |
Unit Of Measure |
The unit of measure that you select while defining the KPI appears, by default. This is not editable. |
Range |
The ranges defined in the KPI appear by default. You cannot edit the ranges but can provide colors to the ranges from the color picker. |
X-Axis Caption |
Specify x-axis caption. |
X-Axis Label Style |
Select one of the following for x-axis label style:
|
Y-Axis Caption |
Specify y-axis caption. |
Render View on load check box |
Select if you want to render the view while the page loads. |
Time-frame |
By default, the time-frame appears in the Business Measure. It is an editable field. |
Input Parameter |
The value of the attribute for which you need dynamic input while designing the dashboard (as specified in Business Measure). You have to type in the input values, depending on the parameter and its data type. |
Show Trend |
Trend Analysis refers to the analytical comparison of monitored KPIs and identifying their patterns over a period of time. Trends can be plotted over a period of time based upon the processed values of the expression.Select this check box to view the trend as a graph. Clear this option to view latest processed KPI value as a gauge view. Show Trend is selected by default if the KPI has a Schedule attached to it. If you clear the Show Trend option, only scenario 2 properties will appear. The time values displayed will be based on the time zone of the client's browser in 12-hour format. Note: |
Show Legend |
Select this check box to view the legend information regarding ranges and unit of measure. Clear this option to view only the gauge. Show Legend is selected by default. |
Table 4. APIs for the KPI Composite Control
API Name |
Description |
---|---|
setAsynchronous(String) |
Value can be "true" or "false". By default, the request is sent in asynchronous mode. To change the mode to synchronous, invoke the API with value "false" and invoke refresh API to redraw the chart. |
refresh |
Use the API to redraw the chart. |
getChartObject |
Returns the Chart object on which the APIs of Chart are invoked. |
Table 5. Events for the KPI Composite Control
Event |
Description |
---|---|
ondataclick |
Fires when clicked on a data point on the chart. Refer to the following example: function Form_InitDone(eventObject) { <kpiid>.addListener(ondataclicklistenerFn); } function ondataclicklistenerFn(eventObject) { //Can do any operation here }
|